home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / l4_load.arc / L4-LOAD.DOC < prev    next >
Text File  |  1991-01-05  |  3KB  |  103 lines

  1. The loader L4-LOAD.COM is meant to allow users of DESQview to run 
  2. Lotus 1-2-3 version 3.1 in a DESQview window without having to 
  3. set the field "Keyboard Conflict" in the Lotus 1-2-3 Change a 
  4. Program menu to 8.  Because of certain calls that 1-2-3 3.1 makes 
  5. within its keyboard interrupt handler, it crashes frequently 
  6. inside DESQview without "Keyboard Conflict" set to 8. However, 
  7. setting "Keyboard Conflict" to 8 sometimes can create unpleasant 
  8. side effects.  The most common of these is shift-state confusion, 
  9. with the shift key seemingly sticking in upper-case mode when the 
  10. cursor keys are used in a 1-2-3 spreadsheet.  With the L4-
  11. LOAD.COM loader, "Keyboard Conflict" can be set to 0 in the Lotus 
  12. 1-2-3 3.1 Change a Program menu without inviting system crashes.
  13.  
  14. To use the loader:
  15.  
  16. 1) Copy the file L4-LOAD.COM to the DESQview directory.
  17.  
  18. 2) Go to the Change a Program menu for Lotus 1-2-3 version 3.1.  The beginning 
  19. of the menu probably looks something like this:
  20.  
  21.  
  22.                                Change a Program
  23.  
  24.  Program Name............: Lotus 1-2-3 Rel 3.1
  25.  
  26.  Keys to Use on Open Menu: L3                         Memory Size (in K): 330
  27. ─────────────────────────────────────────────────────────────────────────────
  28.  Program...: 123.EXE
  29.  
  30.  Parameters:
  31.  
  32.  Directory.: c:\123r31
  33.  
  34.  
  35. Edit the menu so that the loader, with a full path name, is on the "Program" 
  36. line, and 123.EXE is on the "Parameters" line, as follows:
  37.  
  38.                                Change a Program
  39.  
  40.  Program Name............: Lotus 1-2-3 Rel 3.1
  41.  
  42.  Keys to Use on Open Menu: L3                         Memory Size (in K): 330
  43. ─────────────────────────────────────────────────────────────────────────────
  44.  Program...: C:\DV\L4-LOAD.COM
  45.  
  46.  Parameters: 123.EXE
  47.  
  48.  Directory.: c:\123r31
  49.  
  50.  
  51. If you are already passing a parameter to Lotus 1-2-3, as in the below example:
  52.  
  53.                                Change a Program
  54.  
  55.  Program Name............: Lotus 1-2-3 Rel 3.1
  56.  
  57.  Keys to Use on Open Menu: L3                         Memory Size (in K): 330
  58. ─────────────────────────────────────────────────────────────────────────────
  59.  Program...: 123.EXE
  60.  
  61.  Parameters: VGA
  62.  
  63.  Directory.: c:\123r31
  64.  
  65.  
  66. ... then put both 123.EXE and the parameter on the "Parameters" line, as 
  67. follows:
  68.  
  69.                                Change a Program
  70.  
  71.  Program Name............: Lotus 1-2-3 Rel 3.1
  72.  
  73.  Keys to Use on Open Menu: L3                         Memory Size (in K): 330
  74. ─────────────────────────────────────────────────────────────────────────────
  75.  Program...: C:\DV\L4-LOAD.COM
  76.  
  77.  Parameters: 123.EXE VGA
  78.  
  79.  Directory.: c:\123r31
  80.  
  81.  
  82. If you are loading 123.EXE from a batch file, do not change the "Program" and 
  83. "Parameters" line in the Change a Program menu.  Instead, edit the batch file, 
  84. inserting the loader (with full pathname) at the beginning of the line that 
  85. loads 123.EXE.  For instance, if your batch file now looks like this:
  86.  
  87. cd\123
  88. del temp.wk3
  89. 123 vga
  90.  
  91. ... change only the line that loads 123.EXE, so that the new batch file now 
  92. reads:
  93.  
  94. cd\123
  95. del temp.wk3
  96. c:\dv\l4-load.com 123 vga
  97.  
  98.  
  99. 4) Make sure that the "Keyboard Conflict" field on the second page of the Lotus 
  100. 1-2-3 version 3.1 Change a Program menu is set to 0, not to 8.
  101.  
  102.  
  103.                                   END OF FILE